ComponentOne Bitmap for UWP
C1.UWP.DX Assembly / C1.Util.DX Namespace / GetValueFastDelegate<T> Delegate
Type of the getter.
The obj to get the property from.
The value to get.

In This Topic
    GetValueFastDelegate<T> Delegate
    In This Topic
    A Delegate to get a property value from an object.
    Syntax
    'Declaration
     
    Public Delegate Sub GetValueFastDelegate(Of T)( _
       ByVal obj As System.Object, _
       ByRef value As T _
    ) 
    public delegate void GetValueFastDelegate<T>( 
       System.object obj,
       out T value
    )

    Parameters

    obj
    The obj to get the property from.
    value
    The value to get.

    Type Parameters

    T
    Type of the getter.
    See Also